home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjfdlg.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-05  |  501 b   |  21 lines

  1. #ifndef _DTJFDLG_HPP
  2. #define _DTJFDLG_HPP
  3.  
  4. #include "dtjdlg.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJFileDialog : public DTJDialog 
  7. {
  8.     public:
  9.         DTJFileDialog( const MetaObject * pMetaObj );
  10.         virtual ~DTJFileDialog();
  11.         
  12.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  13.                    ostream& src,
  14.                    MMCodeGenerationParms& pGenParms );
  15. };
  16.  
  17. // needed for mdreader
  18. typedef DTJFileDialog DTjava__dot__awt__dot__FileDialog__dot__102;
  19.  
  20. #endif // _DTJFDLG_HPP
  21.